Don't deprecate gtk_widget_show_all()
authorBenjamin Otte <otte@redhat.com>
Wed, 22 Aug 2018 17:48:20 +0000 (19:48 +0200)
committerBenjamin Otte <otte@redhat.com>
Wed, 22 Aug 2018 17:48:20 +0000 (19:48 +0200)
commitda8994f941460206106255112ebe7dcd36b83065
treeace398e55176d1a21a77ff1e7050537c797dc994
parent2b9f5e9e32c081b068a25a841fa93aeafbf5eb5f
Don't deprecate gtk_widget_show_all()

After discussions on IRC, the conclusion was reached that deprecations
only make sense if an action can be taken to not use the deprecated code
that makes the code more current and simplifies a later port to a newer
GTK version.

In this particular case, the suitable action would be adding
gtk_widget_show() calls whenever a widget is created, so that a call to
show_all() is not necessary.
However, in GTK4 these calls would not be necessary and end up just
bloating the codebase unnecessarily.

So it was decided the better solution would be to not deprecate the API
and instead leave this work to be done during potential GTK4 ports of
applications.

This reverts commit 4d71d2303dafe1c02eb79040e32fe2172d1f295f.

Fixes !1282
gtk/gtkwidget.c
gtk/gtkwidget.h